Click here to Skip to main content
15,919,931 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
hello friends
i have created a billing application in windows. it is working really fine, but it's speed is very slow.can you please suggest me how can i increase speed of my window application.
Any help is really appreciated.
Posted
Updated 4-Aug-11 19:17pm
v2
Comments
Sergey Alexandrovich Kryukov 5-Aug-11 1:41am    
Not enough information. Don't expect really valuable advice...
--SA

Without any knowledge of your app, I can only make a few suggestions that are based on assumptions:

1. Check your database if you have unoptimized queries. You might want to revisit your queries and do some possible optimization.
2. Apply indexing on your tables.
3. Revisit the logic on your code. There might be unnecessary loops that can be optimized.
 
Share this answer
 
Comments
thatraja 5-Aug-11 9:57am    
Nice suggestion, 5!
walterhevedeich 5-Aug-11 10:26am    
Thank you Raja.
You will increase the speed by understanding where the application is slow ! (From the information provided, I cannot give better advice.)

You can analyze this by logging to a file the Now.Millisecond time between function calls.
 
Share this answer
 
v3
Hi,

Try to use Stored procedures without using normal SQl query....

thank you,
 
Share this answer
 
Comments
[no name] 7-Aug-11 14:46pm    
A ridiculous answer. How do you know the OP is using any database at all or the queries are the problem?
Soft009 7-Aug-11 23:52pm    
with may experiance..... if you add sql query in your code the code length and execution time goes high..... but if you use stored procedure the the execution time is less.............

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900